home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / HOST16._W_ < prev    next >
Text File  |  1997-07-26  |  508b  |  26 lines

  1. #
  2. # Watcom makefile for HOST [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # TO MAKE: wmake -f host16._W_
  6. #
  7.  
  8. CCFLAGS = -c -oaxt -d2 -w4 -zW
  9.  
  10. OBJS = host.obj about.obj paint.obj
  11.  
  12. host.exe: $(OBJS) host.res host.def wil16.lib
  13.    wlink @host16.lnk
  14.    wrc host.res
  15.  
  16. host.res: $(OBJS) host.rc
  17.    wrc -r -bt=windows host.rc
  18.  
  19. about.obj: about.c about.h
  20.    wcl $(CCFLAGS)  about.c
  21.  
  22. paint.obj: paint.c paint.h wil.h
  23.     wcl $(CCFLAGS)  paint.c
  24.  
  25. host.obj: host.c wil.h
  26.    wcl $(CCFLAGS)  host.c